;WELCOME to this little tutorial about how to create levels for this game
;A line that is written after a ';' is ignored by the game. This is very useful!
;It is not necessary but recommended to write all instructions in order of appearance
;for a complete command reference see DEFINITION
;And now let's start...



;marks the entry of the level. The start-portal is placed there and Pacman sits on it
entry=-350,50


;create a bar...
bar=-300,50
;...with 3 dots on it
dots=3

;and another one
bar=50,50
;also with 3 dots
dots=3
;but this time also with a ghost.
ghost=-1


;a bar...
bar=350,-50
;...with only 2 dots, leaving space for something at the end
dots=2
;yes, 1 would also be possible ;-)


;create an invisibility-capsule in this free space
capsule=511,-75

;create a single dot on coordinates
dot=383,-150
;create a fruit
fruit=450,-150
;and, to make the items complete, a pill
pill=511,-155


;create a jumper on which pacman can jump hiiiiigh
jumper=550,-50

;a bar where he can land
bar=700,-300
;a key to open doors.
key=780,-320,1

;closed Door - find the right key! Oh, you already have it?
door=900,-500,1,1


bar=950,-300
bar=1150,-300

;create a lever to move a bar.
lever=1230,-340,1
;create two movable bars.
movablebar=1350,-500,1350,-300,1,1
movablebar=1475,-300,1475,-100,1

lever=1635,-140,2
movablebar=1800,-300,1800,-200,2


bar=2100,-300

;last but not least the position of the exit-portal
;do not forget it!!!
exit=2300,-300



;OK, that's it.
;And now have fun!





